home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Aircraft Imagery
/
Aircraft Imagery.iso
/
autorun
/
view.dpr
< prev
next >
Wrap
Text File
|
1996-03-13
|
232b
|
15 lines
program View;
uses
Forms,
Vv1 in 'VV1.PAS' {Form1},
Prdi in 'PRDI.PAS' {priDial};
{$R *.RES}
begin
Application.CreateForm(TForm1, Form1);
Application.CreateForm(TpriDial, priDial);
Application.Run;
end.